home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / xwindows / demos / xfract_1.z / xfract_1 / xfractint-1.06 / README < prev    next >
Text File  |  1992-09-28  |  2KB  |  58 lines

  1. Xfractint is the Unix port of fractint, which runs under X.
  2. Fractint is an IBM PC program to generate fractals, and was written by
  3. the the Stone Soup Group.  The Unix port was done by Ken Shirriff.
  4.  
  5. To compile, do:
  6. make xfractint
  7.  
  8. If you are compiling under SunOS, Ultrix, AIX, or HPUX, read the Makefile and
  9. uncomment the approprite lines.
  10.  
  11. To find out what features are new in this version, look at the "versions" file.
  12.  
  13. NOTES ON POTENTIAL PROBLEMS:
  14.  
  15. Important: if you report a bug, _please_ specify what version of xfractint
  16. you are using.
  17.  
  18. Xfractint won't compile unless your compiler handles function prototypes.
  19. You have the best chance of compiling xfractint if you use gcc.  SunOS cc
  20. does not work.
  21.  
  22. To check if your compiler handles prototypes, try compiling the following
  23. two line program:
  24. int foo(int bar);
  25. main() {}
  26. If you get line 1: syntax error at or near type word "int"
  27. then your compiler doesn't handle prototypes, so you won't be able to
  28. compile xfractint.  (One person managed to use "unproto" from
  29. comp.sources.misc volume 26 to strip out the prototypes, so the standard
  30. Sun compiler would work.  You can try this, but I'm not supporting it.)
  31.  
  32. If you get "gcc: unrecognized option `-target'" when you compile, the
  33. problem is probably that you are using an old version of gcc (1.36).  You
  34. need a newer version.
  35.  
  36. If xfractint hangs in the title screen, the problem is probably that your
  37. display cannot update fast enough for the scrolling.  The solution is to
  38. use the -slowdisplay flag.
  39.  
  40. If you are using Openwindows and can't get xfractint to accept input, add
  41. to your .Xdefaults file:
  42. OpenWindows.FocusLenience:    True
  43.  
  44. To use all 256 colors, use the -private flag, discussed in the man page.
  45.  
  46. If you cannot view the GIFs that xfractint creates, the problem is that
  47. xfractint creates GIF89a format and your viewer probably only handles
  48. GIF87a format.  Run "xfractint gif87a=y" to produce GIF87a format.
  49.  
  50. The program is a straight port from the IBM PC, and it thus uses the IBM style
  51. user interface.  See the man page for more details, and a description of
  52. what to use for ctrl-pageup, etc.
  53.  
  54. Running "make makedoc" will create a file fractint.doc, which contains the
  55. online documentation in ascii form.
  56.  
  57. See fractsrc.doc for copyright information on fractint.
  58.